# greetingsWithName.py # # Description: Greeting chatbot that greets the user with name. # # Author: Anne Lavergne # Date: W Jan. 10 2024 # Ask the user for her/his name and read the name userName = input("What is your name: ") # Print a greeting with the user name print(f"Greetings, {userName}!")